home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 326-350 / disk_329 / oneplane / makefile < prev    next >
Makefile  |  1992-05-06  |  781b  |  25 lines

  1. # -------------------------------------------
  2. # Makefile for Oneplane
  3. # Version 1.3, released 26-Feb-1990
  4. # Copyright (C) 1990, Ethan Dicks
  5. #
  6. # This program is *not* in the public domain, but may be freely
  7. # redistributed on the condition that it is not sold, nor used in any
  8. # commercial or shareware package without the express written permission
  9. # of the author.  This program may be included in a freely redistributable
  10. # library, including, but not limited to the Fred Fish library collection.
  11. # In other words, selling this program is right out, but giving it away is
  12. # encouraged.
  13. #
  14. # -------------------------------------------
  15.  
  16. LCFLAGS = -b -r -v -y
  17. LNFLAGS  = SC SD ND
  18.  
  19. OnePlane:    OnePlane.o
  20.     blink OnePlane.o $(LNFLAGS)
  21.  
  22. OnePlane.o:    OnePlane.c
  23.     lc $(LCFLAGS) OnePlane
  24.